* {
    box-sizing: border-box;
  }
  
  ol {
    list-style-type: none;
  }
  
  .history-point {
    width: 150px;
  }
  
  .teleporter {
    border: 2px solid #000;
    font-family: monospace;
    font-size: 20px;
    margin: 3px;
    text-align: center;
    width: 130px;
  }
  
  .teleporter:hover {
    border: 2px solid green;
    color: green;
    cursor: pointer;
    transform: scale(1.02);
  }
  
  .square {
    background: #fff;
    border: 2px solid #000;
    float: left;
    font-size: 36px;
    font-weight: 700;
    height: 50px;
    line-height: 34px;
    margin-right: -2px;
    margin-top: -2px;
    padding: 0;
    text-align: center;
    width: 50px;
    margin: 0px;
  }
  
  .row:after {
    clear: both;
    content: "";
    display: table;
    margin: 0px;
  }
  
  .status {
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    font-family: monospace;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    width: 258px;
    overflow: visible;
  }
  
  .game {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
  }
  
  .game-info {
    margin-left: 20px;
  }
  
  #root {
    background-color: #d1d1d1;
    border: 2px solid #000;
    border-radius: 25px;
    width: 100%;
    padding: 20px;
    height: 500px;
  }
  
  .game-board {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  